home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / gp_win32.c < prev    next >
C/C++ Source or Header  |  1995-11-02  |  3KB  |  113 lines

  1. /* Copyright (C) 1992, 1993, 1994 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gp_win32.c */
  20. /* Common platform-specific routines for MS-Windows WIN32 */
  21. /* hacked from gp_msdos.c by Russell Lang */
  22. #include "stdio_.h"
  23. #include "string_.h"        /* for strerror */
  24. #include "dos_.h"
  25. #include "gstypes.h"
  26. #include "gsmemory.h"        /* for gp.h */
  27. #include "gp.h"
  28. #include "windows_.h"
  29.  
  30. /* ------ Miscellaneous ------ */
  31.  
  32. /* Get the string corresponding to an OS error number. */
  33. /* This is compiler-, not OS-, specific, but it is ANSI-standard and */
  34. /* all MS-DOS and MS Windows compilers support it. */
  35. const char *
  36. gp_strerror(int errnum)
  37. {    return strerror(errnum);
  38. }
  39.  
  40. /* ------ Date and time ------ */
  41.  
  42. /* Read the current time (in seconds since Jan. 1, 1980) */
  43. /* and fraction (in nanoseconds). */
  44. void
  45. gp_get_realtime(long *pdt)
  46. {
  47. SYSTEMTIME st;
  48. long idate;
  49. static const int mstart[12] =
  50.    { 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334 };
  51.     /* This gets UTC, not local time */
  52.     /* We have no way of knowing the time zone correction */
  53.     GetSystemTime(&st);
  54.     idate = (st.wYear - 1980) * 365 +    /* days per year */
  55.           ((st.wYear - 1)/4 - 1979/4) +    /* intervening leap days */
  56.         (1979/100 - (st.wYear - 1)/100) +
  57.         ((st.wYear - 1)/400 - 1979/400) +
  58.         mstart[st.wMonth - 1] +        /* month is 1-origin */
  59.         st.wDay - 1;            /* day of month is 1-origin */
  60.     idate += (2 < st.wMonth
  61.           && (st.wYear % 4 == 0
  62.               && (st.wYear % 100 != 0 || st.wYear % 400 == 0)));
  63.     pdt[0] = ((idate*24 + st.wHour) * 60 + st.wMinute) * 60 + st.wSecond;
  64.     pdt[1] = st.wMilliseconds * 1000000;
  65. }
  66.  
  67. /* Read the current user CPU time (in seconds) */
  68. /* and fraction (in nanoseconds).  */
  69. void
  70. gp_get_usertime(long *pdt)
  71. {    gp_get_realtime(pdt);    /* Use an approximation for now.  */
  72. }
  73.  
  74. /* ------ Console management ------ */
  75.  
  76. /* Answer whether a given file is the console (input or output). */
  77. /* This is not a standard gp procedure, */
  78. /* but the MS Windows configuration needs it, */
  79. /* and other MS-DOS configurations might need it someday. */
  80. int
  81. gp_file_is_console(FILE *f)
  82. {
  83. #ifdef __DLL__
  84.     if ( f == NULL )
  85.         return 1;
  86. #else
  87.     if ( f == NULL )
  88.         return 0;
  89. #endif
  90.     if (fileno(f) <= 2)
  91.         return 1;
  92.     return 0;
  93. }
  94.  
  95. /* ------ Screen management ------ */
  96.  
  97. /* Get the environment variable that specifies the display to use. */
  98. const char *
  99. gp_getenv_display(void)
  100. {    return NULL;
  101. }
  102.  
  103. /* ------ File names ------ */
  104.  
  105. /* Define the default scratch file name prefix. */
  106. const char gp_scratch_file_name_prefix[] = "_temp_";
  107.  
  108. /* Define the name of the null output file. */
  109. const char gp_null_file_name[] = "nul";
  110.  
  111. /* Define the name that designates the current directory. */
  112. const char gp_current_directory_name[] = ".";
  113.